home *** CD-ROM | disk | FTP | other *** search
- // (C) Copyright Microsoft Corp. 1991. All rights reserved.
- //
- // You have a royalty-free right to use, modify, reproduce and
- // distribute the Sample Files (and/or any modified version) in
- // any way you find useful, provided that you agree that
- // Microsoft has no warranty obligations or liability for any
- // Sample Application Files which are modified.
-
-
- #include "windows.h"
- #include "playvfw.h"
-
- PLAYWAVICON ICON playvfw.ico
- BUTTON1CURSOR CURSOR button1.cur
- BUTTON2CURSOR CURSOR button2.cur
- BUTTON3CURSOR CURSOR button3.cur
- BUTTON4CURSOR CURSOR button4.cur
- BUTTON5CURSOR CURSOR button5.cur
- BUTTON6CURSOR CURSOR button6.cur
-
- vgalogo4 BITMAP vgalogo4.bmp
- newlogo BITMAP newlogo.bmp
-
- STRINGTABLE
- BEGIN
- IDSNAME, "playvfw"
- IDSABOUT, "About..."
- IDSTITLE, "The Information Finder"
- END
-
-
-
- BUTTONBAR DIALOG FIXED 10, 200, 180, 14
- STYLE WS_CHILD | WS_VISIBLE
- FONT 8, "MS Sans Serif"
- BEGIN
- PUSHBUTTON "Play", ID_PLAY, 0, 0, 27, 14
- PUSHBUTTON "Stop", ID_STOP, 26, 0, 27, 14
- PUSHBUTTON "Pause", ID_PAUSE, 53, 0, 29, 14
- PUSHBUTTON "Rewind", ID_REWIND, 82, 0, 32, 14
- PUSHBUTTON "Forward", ID_FORWARD, 114, 0, 33, 14
- PUSHBUTTON "Back", ID_BACK, 147, 0, 33, 14
- END
-